home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Desktop ToolTips 2.xpl < prev    next >
Text File  |  2001-01-06  |  2KB  |  62 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="3"
  4. "UIPATH"="Appearance\Desktop\Icons\Tool Tips"
  5. "NAME"="Icon Tool Tips #2"
  6. "VERSION"="2.03"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Recycle Bin"
  9. "TEXT 2"="Briefcase"
  10. "TEXT 3"="Control Panel"
  11. "DESCRIPTION 1"="If you have ActiveDesktop or Windows 2000 installed, a small yellow window (aka Tool Tip) for these items will appear on the desktop if you pass them with your mouse."
  12. "DESCRIPTION 2"="You can change these tips to anything you want."
  13. "DESCRIPTION 3"="NOTE: The tool tip for IE does currently not work on Windows 2000"
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  19.  
  20.  
  21. '******************************************************************
  22. '***             !!COPY!! ONLY EDIT LINES BELOW!               ****
  23. '******************************************************************
  24. sVals=Array("{645FF040-5081-101B-9F08-00AA002F954E}","{85BBD920-42A0-1069-A2E4-08002B30309D}","{21EC2020-3AEA-1069-A2DD-08002B30309D}")
  25. '******************************************************************
  26. '*** Keep an eye on the order (must be the same as "TEXT x") ! ****
  27. '******************************************************************
  28. sP="HKLM\Software\Classes\CLSID\"
  29. sV="InfoTip"
  30.  
  31.  
  32. Sub Plugin_Initialize 
  33.  for i=0 to UBound(sVals)
  34.      Call ReadIt(i+1,sVals(i)) 
  35.  next 
  36. End Sub
  37.  
  38. Sub ReadIt(UI,VAL)
  39.  s=RegReadValue(sp & VAL & "\" & sV)
  40.  Call SetUIElement(UI,s)
  41. End Sub
  42.  
  43.  
  44.  
  45. Sub Plugin_CheckData(ElementIndex)
  46. End Sub
  47.  
  48. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  49.  for i=0 to UBound(sVals)
  50.      Call WriteIt(i+1,sVals(i)) 
  51.  next 
  52. End Sub
  53.  
  54. Sub WriteIt(UI,VAL)
  55.  s=GetUIElement(UI)
  56.  Call RegWriteValue(sp & VAL & "\" & sV,s,1)
  57. End Sub
  58.  
  59.  
  60. Sub Plugin_Terminate 
  61. End Sub
  62.